home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / bbs / ho56.zip / ON_OFF.BAT < prev    next >
DOS Batch File  |  1995-08-29  |  1KB  |  76 lines

  1. @echo off
  2. rem
  3. rem  another sample Hands On menu
  4. rem  updated Tue  08-29-1995  19:57:40
  5. rem  updated Fri  09-23-1994  16:58:12
  6. :start
  7. rem homnu menu "t:Start & Stop"  "Remote - HO" "Host - Hohost" "Unload" "Directory" "Phone bits" "Reset ports" "Test ports" "Exit" nc
  8. homnu menu "t:Start & Stop"  "Remote - HO" "Host - Hohost" "Unload" "Directory"  "Modem reset" "Exit" nc
  9. if errorlevel == 6 goto :end
  10. if errorlevel == 5 goto :modem
  11. if errorlevel == 4 goto :dirlist
  12. if errorlevel == 3 goto :unload
  13. if errorlevel == 2 goto :hoh
  14. if errorlevel == 1 goto :ho_ho
  15. goto :end
  16.  
  17. :ho_ho
  18. cls
  19. HO
  20. pause
  21. goto :START
  22.  
  23. :hoh
  24. cls
  25. HOhost
  26. pause
  27. goto :start
  28.  
  29. :unload
  30. cls
  31. horemove
  32. pause
  33. goto :start
  34.  
  35. :dirlist
  36. cls
  37. DIR/W
  38. pause
  39. goto :start
  40.  
  41. :phone
  42. rem generic phone menu
  43. CLS
  44. 1sthand call
  45. goto :start
  46.  
  47. :reset
  48. rs232off
  49.  
  50. goto :start
  51.  
  52. :test
  53. cls
  54. echo .
  55. echo .  Tap Control-C then answer "NO" if you decide to skip this test.
  56. echo .
  57. comtest
  58. goto :start
  59.  
  60. :modem
  61. cls
  62. echo .
  63. echo . Now configuring the modem.  Try doing it daily.
  64. echo .
  65. echo . This just runs HOMODSET with the homodset.dat file.
  66. echo .
  67. homodset
  68. goto :start
  69.  
  70.  
  71.  
  72. :end
  73. homenu.bat
  74.  
  75. rem   END
  76.